home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / COMBINE.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  403b  |  27 lines

  1.                               /* Chapter 4 - Program 4 - COMBINE.C */
  2. void main()
  3. {
  4. int a = 2;
  5. float x = 17.1, y = 8.95, z;
  6. char c;
  7.  
  8.    c = (char)a + (char)x;
  9.    c = (char)(a + (int)x);
  10.    c = (char)(a + x);
  11.    c = a + x;
  12.  
  13.    z = (float)((int)x * (int)y);
  14.    z = (float)((int)(x * y));
  15.    z = x * y;
  16.  
  17. }
  18.  
  19.  
  20.  
  21.  
  22. /* Result of execution
  23.  
  24.    (There is no output from this program)
  25.  
  26. */
  27.